home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / METAKIT.ZIP / EXAMPLES / CATSEND / MYDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-09  |  998 b   |  39 lines

  1. //    mydlg.h  -  catalog send dialog sample code
  2. //
  3. //    This is a part of the MetaKit library.
  4. //    Copyright (c) 1996 Meta Four Software.
  5. //    All rights reserved.
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. class CMyDlg : public CDialog
  9. {
  10. // Construction
  11. public:
  12.     CMyDlg(CWnd* pParent = NULL);    // standard constructor
  13.  
  14. // Dialog Data
  15.     //{{AFX_DATA(CMyDlg)
  16.     enum { IDD = IDD_CATSEND_DIALOG };
  17.     CEdit    m_address;
  18.     CEdit    m_port;
  19.     //}}AFX_DATA
  20.  
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CMyDlg)
  23.     protected:
  24.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     // Generated message map functions
  30.     //{{AFX_MSG(CMyDlg)
  31.     virtual BOOL OnInitDialog();
  32.     afx_msg void OnSendBtn();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // $Id: mydlg.h,v 1.2 1996/12/04 14:50:00 jcw Exp $
  39.